runtime.heapStatsDelta.released (field)
14 uses
runtime (current package)
metrics.go#L379: out.scalar = uint64(in.heapStats.released)
metrics.go#L456: out.scalar = uint64(in.heapStats.committed+in.heapStats.released) +
mgcscavenge.go#L788: atomic.Xaddint64(&stats.released, nbytes)
mheap.go#L1415: atomic.Xaddint64(&stats.released, -int64(scav))
mheap.go#L1596: atomic.Xaddint64(&stats.released, int64(size))
mheap.go#L1639: atomic.Xaddint64(&stats.released, int64(nBase-v))
mstats.go#L470: if gcController.heapReleased.load() != uint64(consStats.released) {
mstats.go#L472: print("runtime: consistent value=", consStats.released, "\n")
mstats.go#L495: if gcController.mappedReady.Load() != totalMapped-uint64(consStats.released) {
mstats.go#L498: print("runtime: released=", uint64(consStats.released), "\n")
mstats.go#L499: print("runtime: totalMapped-released=", totalMapped-uint64(consStats.released), "\n")
mstats.go#L673: released int64 // byte delta of released memory generated
mstats.go#L698: a.released += b.released
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |